home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_AddrNetMask.c,v < prev    next >
Text File  |  1988-11-21  |  2KB  |  85 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.21.09.09.13;  author mendel;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Formed from net.c of src/lib/old/net.c.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * Net_InetAddrNetMask.c --
  28.  *
  29.  *    Return the network mask for a given address.
  30.  *
  31.  * Copyright 1987 Regents of the University of California
  32.  * All rights reserved.
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that the above copyright
  36.  * notice appear in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  */
  41.  
  42. #ifndef lint
  43. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  44. #endif not lint
  45.  
  46.  
  47. #include "sprite.h"
  48. #include "net.h"
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * Net_InetAddrNetMask --
  54.  *
  55.  *    Returns a mask that can be used to generate the network portion of 
  56.  *    an internet address. Handles class A/B/C network #'s.
  57.  *
  58.  * Results:
  59.  *    The network mask of an IP address.
  60.  *
  61.  * Side effects:
  62.  *    None.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. unsigned int
  68. Net_InetAddrNetMask(addr)
  69.     Net_InetAddress addr;
  70. {
  71.     register Net_InetAddress i = Net_NetToHostInt(addr);
  72.  
  73.     if (NET_INET_CLASS_A_ADDR(i)) {
  74.     return(NET_INET_CLASS_A_NET_MASK);
  75.     } else if (NET_INET_CLASS_B_ADDR(i)) {
  76.     return(NET_INET_CLASS_B_NET_MASK);
  77.     } else if (NET_INET_CLASS_C_ADDR(i)) {
  78.     return(NET_INET_CLASS_C_NET_MASK);
  79.     } else {
  80.     return(NET_INET_CLASS_D_NET_MASK);
  81.     }
  82. }
  83.  
  84. @
  85.